home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_03 / 1103018b < prev    next >
Encoding:
Text File  |  1995-11-01  |  207 b   |  10 lines

  1. /* strftime function */
  2. #include "xtime.h"
  3.  
  4. size_t (strftime)(char *s, size_t n,
  5.     const char *fmt, const struct tm *t)
  6.     {    /* format time to string */
  7.     return (_Strftime(s, n, fmt, t, &_Times));
  8.     }
  9.  
  10.